home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 3 / BBS in a box - Trilogy III.iso / Files / Prog / B-C / C++ FAQ Reference 1.0 / C++ FAQ Reference 1.0.rsrc / TEXT_930.txt < prev    next >
Encoding:
Text File  |  1993-06-30  |  474 b   |  3 lines

  1. Type safety requires you to annotate your code with type information.  In theory, expressing this type information isn't necessary -- witness untyped languages as an example of this.  However in practice, programmers often know in their heads a lot of interesting information about their code, so type safety (and, by extension, const correctness) merely provide structured ways to get this information into their keyboards.
  2.  
  3. Short answer: yes, const correctness is tedious.